home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / ava-0.2.5.lha / ava-0.2.5 / examples / error.s < prev    next >
Encoding:
Text File  |  1999-03-23  |  175 b   |  13 lines

  1. #arch AT90S1200
  2. #print "Target device: AT90S1200"
  3.  
  4. #ifndef A
  5. #  error  Macro A is not defined
  6. #endif
  7.  
  8. #print "A: " A
  9.  
  10. #if A==2
  11. #  error "A equals 2 -- check it out :)"
  12. #endif
  13.